home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / usr_-_Usr_Files / INCLUDE / LASTLOG.H < prev    next >
Encoding:
C/C++ Source or Header  |  1999-09-17  |  174 b   |  13 lines

  1. #ifndef _LASTLOG_H
  2. #define _LASTLOG_H
  3.  
  4. #include <utmp.h>
  5.  
  6. struct lastlog {
  7.     long ll_time;
  8.     char ll_line[UT_LINESIZE];
  9.     char ll_host[UT_HOSTSIZE];
  10. };
  11.  
  12. #endif /* _LASTLOG_H */
  13.